home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / util / arc / ViewDIZ.lha / viewdiz / Install < prev    next >
Encoding:
Text File  |  1997-07-28  |  1.5 KB  |  74 lines

  1. ;ViewDIZ Installation script, ©1997 Mikael Lund
  2. ;Completely safe - Nothing will be overwritten!
  3.  
  4. Echo "  ViewDIZ Installation Script by Mikael Lund"
  5. Echo "  Checking your system..."
  6.  
  7. if not exists T:
  8.  echo " You must have an assignment to T:
  9.  echo " - This is automaticly done in the Workbench 2.0+ startup-sequence"
  10.  echo ""
  11.  quit
  12. endif
  13.  
  14. if not exists ENV:
  15.  echo " You must have an assignment to ENV:
  16.  echo " - This is automaticly done in the Workbench 2.0+ startup-sequence"
  17.  echo ""
  18.  quit
  19. endif
  20.  
  21. if not exists libs:rexxsupport.library
  22.  echo " You'll need RexxSupport.library to use ViewDIZ."
  23.  echo " - Find it on your Workbench 2.0+ installation disks"
  24.  echo ""
  25.  quit
  26. endif
  27.  
  28. if not exists libs:reqtools.library
  29.  echo " You'll need ReqTools.library to use ViewDIZ."
  30.  echo " - Find it on Aminet as Aminet/Util/Libs/ReqToolsUsr.Lha"
  31.  echo ""
  32.  quit
  33. endif
  34.  
  35. if not exists libs:rexxreqtools.library
  36.  echo " You'll need RexxReqTools.library to use ViewDIZ."
  37.  echo " - Find it on Aminet as Aminet/Util/Libs/ReqToolsUsr.Lha"
  38.  echo ""
  39.  quit
  40. endif
  41.  
  42. echo "  Passed system check. Wait..."
  43.  
  44. copy env/ ENVARC: clone
  45. copy env/ ENV: clone
  46. copy c/ViewDIZ to c: clone
  47.  
  48. if exists "Help:"
  49.  copy ViewDIZ.Guide to Help:
  50. endif
  51.  
  52. if not exists "C:MagicDIZ"
  53.  copy c/MagicDIZ c:
  54. endif
  55.  
  56. if not exists "C:DMSdescript"
  57.  copy c/DMSdescript c:
  58. endif
  59.  
  60. if not exists "C:TEXTract"
  61.  copy c/TEXTract c:
  62. endif
  63.  
  64. if not exists "C:Copy2Clip"
  65.  copy c/Copy2Clip c:
  66. endif
  67.  
  68. if not exists "fonts:jetterm.font"
  69.  copy fonts fonts: all
  70. endif
  71.  
  72. echo "  Installation complete."
  73. C:ViewDIZ
  74.